home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 5599 < prev    next >
Encoding:
Text File  |  1996-08-05  |  1.6 KB  |  38 lines

  1. Newsgroups: comp.lang.c++,comp.programming
  2. Path: uu4news.netcom.com!amc-gw!curtis
  3. From: curtis@amc.com (Curtis Green)
  4. Subject: Re: Why are 32 bit better than 16 bit pgms?
  5. Message-ID: <1996Feb5.163838.24531@amc.com>
  6. Organization: Applied Microsystems Corporation
  7. X-Newsreader: TIN [version 1.1 PL6]
  8. References: <4er4m4$78q@news1.ucsd.edu>
  9. Date: Mon, 5 Feb 1996 16:38:38 GMT
  10.  
  11. The "bits" quoated for the processor (16 bit, 32 bit, 64 bit, etc) is the
  12. size of the data path (data bus).  The advantage of 16 bit over 8 bit or 32 bit 
  13. over 16 bit is that the processor can access twice as much data in a single
  14. memory access.  The number of address lines determine how much memory the
  15. processor can access and is basically irrelivent to the applications
  16. programmer (unless you are doing lower level memory management).  
  17.  
  18. Anyway, the wider the data bus the more information that can be transfered
  19. by the processor durring one instruction.  However,  if your compiler
  20. does not support 32 bit,  you won't be able to take real advantage of it
  21. becouse the correct instructions may not be generated.
  22.  
  23.  
  24. --
  25. ------------------------------------------------------------------------------
  26.                 |   Be seeing you...
  27.    __&__        |    
  28.   /     \       |    Curtis Green
  29.  |       |      |    Applied Microsystems Embedded Systems
  30.  |  (o)(o)      |
  31.  C   .---_)     |    (home)  gozer@halcyon.com
  32.   | |.___|      |
  33.   |  \__/       |    (work)  curtis@amc.com
  34.   /_____\       |    http://www.amc.com
  35.  /_____/ \      |
  36. /         \     |    My opinions are expressly mine on my own.
  37. ------------------------------------------------------------------------------
  38.